From 663a6050169f4f4af229df87b66d462e49a4b5cb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jorge=20Israel=20Pe=C3=B1a?= Date: Sun, 19 Oct 2014 20:36:19 -0700 Subject: [PATCH] use rpath defaults --- src/doc/manifest.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/doc/manifest.md b/src/doc/manifest.md index bb00c389a..8a55a254e 100644 --- a/src/doc/manifest.md +++ b/src/doc/manifest.md @@ -108,7 +108,7 @@ along with the defaults for each profile. [profile.dev] opt-level = 0 # Controls the --opt-level the compiler builds with debug = true # Controls whether the compiler passes -g or `--cfg ndebug` -rpath = true # Controls whether the compiler passes `-C rpath` +rpath = false # Controls whether the compiler passes `-C rpath` # The release profile, used for `cargo build --release` [profile.release] @@ -120,7 +120,7 @@ rpath = false [profile.test] opt-level = 0 debug = true -rpath = true +rpath = false # The benchmarking profile, used for `cargo bench` [profile.bench] @@ -132,6 +132,7 @@ rpath = false [profile.doc] opt-level = 0 debug = true +rpath = false ``` # The `[features]` Section -- 2.30.2